const company = "Nike";
const tagline = "Just do it";

[company, tagline].forEach((el) => console.log(el));
